A collection of financial stuff
over a certain period of time.
create_item( name = "Paycheck"
, amount = 1000
, day = 5
, recurring = TRUE
)
A collection of financial stuff
over a certain period of time.
create_schedule( paycheck
, rent
, internet
, car
, groceries
)
A collection of financial stuff
over a certain period of time.
create_budget( schedule
, start = as.Date("2016-09-13")
, end = as.Date("2016-12-13")
, initial = 1000
)
## budget (budgetr)
## date name balance
## 2016-09-13 Initial Amount 1000
## 2016-09-15 Internet 900
## 2016-09-30 Car 800
## 2016-09-30 Groceries 700
## 2016-10-01 Paycheck 1700
## 2016-10-05 Rent 1200
## 2016-10-15 Internet 1100
## 2016-10-31 Car 1000
## 2016-10-31 Groceries 900
## 2016-11-01 Paycheck 1900
## 2016-11-05 Rent 1400
## 2016-11-15 Internet 1300
## 2016-11-30 Car 1200
## 2016-11-30 Groceries 1100
## 2016-12-01 Paycheck 2100
## 2016-12-05 Rent 1600
get_items() for grabbing all of your items in the current environmentupdate_* functions to quickly update your budget objects